home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: radiobutton.h 44.1 (19.10.1999)
- ** Includes Release 44.1
- **
- ** Definitions for the radiobutton.gadget BOOPSI class
- **
- ** (C) Copyright 1987-1999 Amiga, Inc.
- ** All Rights Reserved
- */
- /*****************************************************************************/
- //MODULE 'reaction/reaction','intuition/gadgetclass'
- /*****************************************************************************/
- /* Defines for the radiobutton node attributes.
- */
- #define RBNA_Dummy (TAG_USER+$020000)
- #define RBNA_UserData (RBNA_Dummy+1)
- /* (APTR) User Data. */
- #define RBNA_Labels (RBNA_Dummy+2)
- /* (STRPTR) Text string array of labels for MX buttons. */
- /*****************************************************************************/
- /* Additional attributes defined by the RadioButton class
- */
- #define RADIOBUTTON_Dummy (REACTION_Dummy + $14000)
- #define RADIOBUTTON_Labels (RADIOBUTTON_Dummy+1)
- /* (struct List *) Radio Button Label List. */
- #define RADIOBUTTON_Strings (RADIOBUTTON_Dummy+2)
- /* RESERVED - presently unsupported */
- #define RADIOBUTTON_Spacing (RADIOBUTTON_Dummy+3)
- /* (WORD) Spacing between radio buttons */
- #define RADIOBUTTON_Selected (RADIOBUTTON_Dummy+4)
- /* (WORD) selected radio button (OM_GET/OM_SET/OM_NOTIFY) */
- #define RADIOBUTTON_LabelPlace (RADIOBUTTON_Dummy+5)
- /* (WORD) label location (OM_GET/OM_SET) */
- /*****************************************************************************/
-